home *** CD-ROM | disk | FTP | other *** search
- class BejeweledApplication extends MovieClip
- {
- var mLastClick;
- var mAboutWindow;
- static var STATE_RUNNING;
- static var STATE_PAUSED;
- static var STATE_INSTRUCTIONS;
- static var STATE_MENU;
- function BejeweledApplication()
- {
- super();
- this.mLastClick = new Point2D(-1,-1);
- }
- function contextMenuActivated(obj, item)
- {
- obj.mAboutWindow._visible = true;
- trace("iMax menu activated: (" + this.mAboutWindow + ") [" + obj + "]:[" + item + "]");
- }
- }
-